home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
XAMPP 1.4.14
/
xampp-win32-1.4.14-installer.exe
/
xampp
/
htdocs
/
excel
/
excel.php
Wrap
PHP Script
|
2003-04-06
|
411b
|
17 lines
<?php
include_once "Spreadsheet/Excel/Writer.php";
$xls =& new Spreadsheet_Excel_Writer();
$xls->send("test.xls");
$sheet =& $xls->addWorksheet('Test XLS');
$sheet->write(0,0,1);
$sheet->write(0,1,"Test in XAMPP");
$format =& $xls->addFormat();
$format->setBold();
$format->setColor("blue");
$sheet->write(1,0,2);
$sheet->write(1,1,$value,$format);
$xls->close();
?>